Debug

Syntax: @Debug string, Caption

The Debug command will cause any text specified by the string parameter to be displayed in a standard Windows message dialog box, with a single OK button. This can be very useful for quick and easy developer debug messages (e.g. Files updated OK), or for warnings within macro commands, etc.

The optional Caption parameter can be used to set a title for the debug dialog.

The @Concat could be very useful in building up text messages for @Debug to display, or you could use + to concatenate strings within the debug command.

Examples

@Debug 'Step 10 has been completed'

@Debug Drive + Directory + ProgName, 'Show Current Path'